const time.hasMonotonic

18 uses

	time (current package)
		format.go#L550: 	if t.wall&hasMonotonic != 0 {
		time.go#L164: 	hasMonotonic = 1 << 63
		time.go#L182: 	if t.wall&hasMonotonic != 0 {
		time.go#L193: 	if t.wall&hasMonotonic != 0 {
		time.go#L197: 			t.wall = t.wall&nsecMask | uint64(dsec)<<nsecShift | hasMonotonic
		time.go#L227: 	if t.wall&hasMonotonic != 0 {
		time.go#L238: 	if t.wall&hasMonotonic == 0 {
		time.go#L243: 		t.wall |= hasMonotonic | uint64(sec-minWall)<<nsecShift
		time.go#L254: 	if t.wall&hasMonotonic == 0 {
		time.go#L268: 	if t.wall&u.wall&hasMonotonic != 0 {
		time.go#L278: 	if t.wall&u.wall&hasMonotonic != 0 {
		time.go#L290: 	if t.wall&u.wall&hasMonotonic != 0 {
		time.go#L313: 	if t.wall&u.wall&hasMonotonic != 0 {
		time.go#L1178: 	if t.wall&hasMonotonic != 0 {
		time.go#L1195: 	if t.wall&u.wall&hasMonotonic != 0 {
		time.go#L1224: 	if t.wall&hasMonotonic != 0 {
		time.go#L1234: 	if t.wall&hasMonotonic != 0 {
		time.go#L1353: 	return Time{hasMonotonic | uint64(sec)<<nsecShift | uint64(nsec), mono, Local}